Tables [dbo].[Content_Authority_Ref]
Properties
PropertyValue
Created10:31:18 AM Tuesday, March 02, 2010
Last Modified11:40:01 AM Monday, February 20, 2012
Columns
NameData TypeMax Length (Bytes)Allow NullsIdentity
Cluster Primary Key PK_Content_Authority_Ref: ContentAuthorityIDContentAuthorityIDnumeric(18,0)9
No
1 - 1
ContentAuthorityCodevarchar(5)5
No
ContentAuthorityDescvarchar(255)255
Yes
ContentAuthorityShortDescvarchar(50)50
Yes
CategoryDepthnumeric(18,0)9
Yes
SortOrderdecimal(18,0)9
Yes
ParentContentAuthorityIDnumeric(18,0)9
Yes
AncestoryContentAuthorityIDnumeric(18,0)9
Yes
ActiveFlagchar(1)1
Yes
ContentAuthorityLabelvarchar(50)50
Yes
Indexes Indexes
NameColumnsUnique
Cluster Primary Key PK_Content_Authority_Ref: ContentAuthorityIDPK_Content_Authority_RefContentAuthorityID
Yes
Permissions
TypeActionOwning Principal
GrantDeleteIMIS
GrantInsertIMIS
GrantReferencesIMIS
GrantSelectIMIS
GrantUpdateIMIS
SQL Script
CREATE TABLE [dbo].[Content_Authority_Ref]
(
[ContentAuthorityID] [numeric] (18, 0) NOT NULL IDENTITY(1, 1),
[ContentAuthorityCode] [varchar] (5) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[ContentAuthorityDesc] [varchar] (255) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[ContentAuthorityShortDesc] [varchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[CategoryDepth] [numeric] (18, 0) NULL,
[SortOrder] [decimal] (18, 0) NULL,
[ParentContentAuthorityID] [numeric] (18, 0) NULL,
[AncestoryContentAuthorityID] [numeric] (18, 0) NULL,
[ActiveFlag] [char] (1) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[ContentAuthorityLabel] [varchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL
) ON [PRIMARY]

GO
ALTER TABLE [dbo].[Content_Authority_Ref] ADD CONSTRAINT [PK_Content_Authority_Ref] PRIMARY KEY CLUSTERED ([ContentAuthorityID]) ON [PRIMARY]
GO
GRANT REFERENCES ON  [dbo].[Content_Authority_Ref] TO [IMIS]
GRANT SELECT ON  [dbo].[Content_Authority_Ref] TO [IMIS]
GRANT INSERT ON  [dbo].[Content_Authority_Ref] TO [IMIS]
GRANT DELETE ON  [dbo].[Content_Authority_Ref] TO [IMIS]
GRANT UPDATE ON  [dbo].[Content_Authority_Ref] TO [IMIS]
GO
Uses